home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Workbench / ToolManager / Source / DMakefile next >
Makefile  |  1998-06-17  |  879b  |  36 lines

  1. #
  2. # DMakefile  V3.1
  3. #
  4. # Makefile for ToolManager 3.1 (Global)
  5. #
  6. # Copyright (C) 1990-98 Stefan Becker
  7. #
  8. # This source code is for educational purposes only. You may study it
  9. # and copy ideas or algorithms from it for your own projects. It is
  10. # not allowed to use any of the source codes (in full or in parts)
  11. # in other programs. Especially it is not allowed to create variants
  12. # of ToolManager or ToolManager-like programs from this source code.
  13. #
  14. DIRS   = Locale Library Prefs Converter WBStartup Docs
  15.  
  16. #
  17. TMPDIR = T:
  18. TCOMP  = $(DIRS:"*":"*/compiled")
  19. TCLEAN = $(DIRS:"*":"*/cleaned")
  20.  
  21. all       : $(TCOMP)
  22.  
  23. $(TCOMP)  : $(DIRS)
  24.          @CD %(right)
  25.          @Echo "making all in %(right)..."
  26.          @DMake -q
  27.          @CD /
  28.  
  29. clean     : $(TCLEAN)
  30.  
  31. $(TCLEAN) : $(DIRS)
  32.          @CD %(right)
  33.          @Echo "making clean in %(right)..."
  34.          @DMake -q clean
  35.          @CD /
  36.